String:Mid(text, copy, return)
Returns a portion of the source text depending on the parameters supplied.
None.
function main() { Var:String myStr = "Hello World"; String:Mid(myStr, 4, 5, myStr) //start at 4th character and get 5 Konsol:Log(myStr) //see the log for "lo Wo" }